for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
define(function() {
/**
* @class
*/
var JsonGeneratorStorage = function() {
* @protected
* @type {Object}
var $data = {};
* @public
* @param {Object} $_data
this.write = function($_data) {
$data = $_data;
};
* @returns {Object}
this.read = function() {
return $data;
return JsonGeneratorStorage;
});